home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-03 | 1.7 KB | 77 lines | [TEXT/CWIE] |
- //
- // CWMacApp.pch.h
- //
- // Generates the 'MacAppHeaders<xxx>' precompiled header for Metrowerks C/C++.
- // Copyright © 1993-1996 metrowerks inc. All rights reserved.
- //
- //
- //--------------------------------------------------------------------------------
-
- #pragma once on
- #pragma check_header_flags on
-
- #if __option(precompile)
-
- //•-------------------------------------------------------
- //• CWMacAppSwitches.h must be first here because
- //• it sets up the compile flags even before
- //• MAConditionalMacros.h (which must be first elsewhere).
- //•-------------------------------------------------------
- #include "CWMacAppSwitches.h"
-
- // precompile the MacApp headers
- #include "CWMacAppHeaders.h"
-
- //
- // Support for automatically naming the precompiled header file ...
- //
-
- #if __POWERPC__
- #if wantDebugging
- #pragma precompile_target "MacAppHeadersPPC_d"
- #else
- #pragma precompile_target "MacAppHeadersPPC_nd"
- #endif
- #elif __CFM68K__
- #if wantDebugging
- #pragma precompile_target "MacAppHeadersCFM68K_d"
- #else
- #pragma precompile_target "MacAppHeadersCFM68K_nd"
- #endif
- #else
- #if wantDebugging
- #pragma precompile_target "MacAppHeaders68K_d"
- #else
- #pragma precompile_target "MacAppHeaders68K_nd"
- #endif
- #endif
-
- #else
-
- #if __POWERPC__
- #if wantDebugging
- #include "MacAppHeadersPPC_d"
- #else
- #include "MacAppHeadersPPC_nd"
- #endif
- #elif __CFM68K__
- #if wantDebugging
- #include "MacAppHeadersCFM68K_d"
- #else
- #include "MacAppHeadersCFM68K_nd"
- #endif
- #else
- #if wantDebugging
- #include "MacAppHeaders68K_d"
- #else
- #include "MacAppHeaders68K_nd"
- #endif
- #endif
-
- #endif
-
-
- //----------------------------------------------------------------------------------------
- // End of CWMacApp.pch.h
-
-